home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2007 November
/
CPNL0711.ISO
/
boekhoud
/
finan
/
BADGER finance v1.0 beta 2.exe
/
xampplite
/
phpMyAdmin
/
libraries
/
transformations
/
application_octetstream__hex.inc.php
< prev
next >
Wrap
PHP Script
|
2005-06-24
|
420b
|
13 lines
<?php
/* $Id: application_octetstream__hex.inc.php,v 1.1 2005/06/24 14:28:00 nijel Exp $ */
// vim: expandtab sw=4 ts=4 sts=4:
function PMA_transformation_application_octetstream__hex($buffer, $options = array(), $meta = '') {
// possibly use a global transform and feed it with special options:
// include('./libraries/transformations/global.inc.php');
return chunk_split(bin2hex($buffer), 2, ' ');
}
?>